home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / MATH / MATH1 / PAS-ENG.DOC < prev    next >
Text File  |  1985-04-03  |  4KB  |  129 lines

  1. ****   MTPUG.006   ****   October 15, 1982
  2.  
  3. Until noted otherwise, the following were written by Allen Miller
  4. and appear in the book entitled "Pascal Programs For Scientists
  5. And Engineers" which is published by Sybex.
  6. They were submitted to this users Group by Juergen Loewner,
  7. D-4400 Muenster, Hoher Heckenweg 3, West Germany
  8.  
  9. MEANS.PAS:     This  file computes the mean and the standard
  10.                deviation of a set of numbers.
  11.  
  12. RANDOM.LIB:    A random generator (0..1).
  13.  
  14. RANDG.LIB:     A random generator with gaussian distribution.
  15.  
  16. MATR1.PAS:     A matrix multiplication program.
  17.  
  18. DETERM.PAS:    A  program to calculate the determinant of  a  3x3 
  19.                matrix.
  20.  
  21. SIMPQ1.PAS:    A program to solve three simultaneous equations.
  22.  
  23. GAUSS.PAS:     A  program  to  perform simultaneous  solution  by 
  24.                Gaussian elimination.
  25.  
  26. SOLVGJ.PAS:    same as above but Gauss-Jordan algorithm.
  27.  
  28. GAUSSJ.LIB:    Gauss-Jordan matrix inversion and solution.
  29.  
  30. SOLVGV.PAS:    A  program to perform  simultan.  sol.  by  Gauss-
  31.                Jordan elimination with (mult.) const. vect.
  32.  
  33. SOLVGJ2.PAS:   A  program to perform simult.  solution when using 
  34.                more  equations  than  unknowns  (by  Gauss-Jordan 
  35.                elimination).
  36.  
  37. SOLVEC.PAS:    A  program  to perform simultaneous  solution  for 
  38.                complex coefficients.
  39.  
  40. GAUSID.PAS:    A program to perform simult. sol. by Gauss-Seidel.
  41.  
  42. CFIT1.PAS:     A program to perform a linear least-squares curve-
  43.                fit.
  44.  
  45. CFIT1a.PAS:    same as above but with a random generator.
  46.  
  47. PLOT.LIB:      A (printer-) plotter subroutine.
  48.  
  49. CFIT2.PAS:     A plotting program using PLOT.LIB.
  50.  
  51. LINFIT1.LIB:   A  program  which fits a straight line  through  n 
  52.                sets of x and y pairs of points.
  53.  
  54. LINFIT2.LIB:   Another example of the above prog.
  55.  
  56. CFIT4.PAS:     A linear least-squares fit program.
  57.  
  58. TSTSORT.PAS:   A Bubble-sort.
  59.  
  60. SORT-B.LIB:    A variation of the above prog.
  61.  
  62. SORT-S.LIB:    A Shell-sort procedure.
  63.  
  64. SORT-Q-S.LIB:  A recursive Quick-sort.
  65.  
  66. SORT-Q-N.LIB:  A nonrecursive of Quick-sort.
  67.  
  68. LEAST1.PAS:    A program to perform a linear least-squares fit.
  69.  
  70. LEAST2.PAS:    As above but now with Gauss-Jordan procedure.
  71.  
  72. LEAST3.PAS:    A variation of LEAST2.
  73.  
  74. GD-LINF1.LIB:  and
  75. GD-LINF2.LIB:  and
  76. LEAST6.PAS:    are variationes with different problems.
  77.  
  78. NEWDR.PAS:     A program to solve equations by Newtons method.
  79.  
  80. NEWDR2.PAS:    Another version of the program above.
  81.  
  82. NEWTON.LIB:    The Newton program for a library.
  83.  
  84. NEWTON-L.LIB:  The Newton program with an iteration counter.
  85.  
  86. TRAP1.PAS:     A  program  for integrations  by  the  trapezoidal 
  87.                rule.
  88.  
  89. TRAP2.PAS:     Another better version of the above.
  90.  
  91. TRAPEZ.LIB:    Another improved version with end-correction.
  92.  
  93. SIMP1.PAS:     Another integration program now by Simpson's rule.
  94.  
  95. SIMPS.LIB:     Simp1.pas as a procedure and with end-correction.
  96.  
  97. ROMB1.PAS:     Last  not least a integration program by the
  98.                Romberg method.
  99.  
  100. ROMB3.PAS:     As above but now with adjustable panels.
  101.  
  102. FITPOL.PAS:    A  program to perform linear least-squares fit  to 
  103.                the ratio of 2 polynomals.
  104.  
  105. DIFFUS.PAS:    An example of the above: diffuson of Zn in Cu.
  106.                (A least squares fit to the linearized e-function)
  107.  
  108. NLIN3.PAS:     Same  as  above  but now with a  nonlinearized
  109.                e-function.
  110.  
  111. ERFSIMP.PAS:   The Gaussian Error Function by Simpson's rule.
  112.  
  113. ERFD.PAS:      An  infinite  series expansion  for  the  Gaussian 
  114.                error function.
  115.  
  116. ERFD3.PAS:     The Gaussian error function and its complement.
  117.  
  118. ERF4.PAS:      An improved Gaussian error function.
  119.  
  120. TSTGAM.PAS:    A program to test the Gamma function
  121.  
  122. TSTBES.PAS:    A program to test the Bessel function
  123.  
  124. BESY.PAS:      An  evaluation  of the Bessel function of the  2nd 
  125.                kind.
  126.  
  127. RANDOM.PAS:    Another random generator.
  128.  
  129.